{% extends "_layout.html" %} {% from "_macros.html" import summary_table, row %} {% block title %}Refund of {{ amount_formatted }} — {{ project_name }}{% endblock %} {% block preheader %}Your refund of {{ amount_formatted }} is on its way back.{% endblock %} {% block heading %}Refund processed.{% endblock %} {% block body %}
We’ve refunded {{ amount_formatted }} to your original payment method. Most banks post the credit within 5-10 business days; some are faster.
The refund references the original charge on {{ original_charge_date_human }}; keep this email as your refund receipt.
{% endblock %} {% block summary %} {% call summary_table() %} {{ row("Original charge", original_charge_date_human) }} {{ row("Original receipt", invoice_number) }} {{ row("Refund amount", amount_formatted, emphasis=True) }} {% endcall %} {% endblock %} {% block cta_label %}View billing history{% endblock %} {% block footer_note %}Full payment history (including this refund) lives in Settings · Billing. Reply if anything looks wrong.
{% endblock %}